home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / DEMO_BAT.ZIP / CLEANUP.BAT < prev    next >
DOS Batch File  |  1995-04-01  |  1KB  |  38 lines

  1. @echo off
  2.   if %1.==. goto USAGE:
  3.   echo Cleaning up backup and temporary files from disk drive(s) %1.
  4.   echo Searching for files to select for deletion...
  5.   ffg> cln$tmp$.bat /fb %1*[~,bak,bk!,!bk,tmp,temp,bkup]* /x*.[bat,cod]
  6.   ffg>>cln$tmp$.bat /fb %1\~trash~\*
  7.   ffg>>cln$tmp$.bat /fb %1\pdx\*.lck /d-1T
  8.   cls
  9.   echo Next you can edit out any lines with names of files you DON'T want deleted.
  10.   call presskey
  11.   edit cln$tmp$.bat
  12.   if exist cln$tmp$.bak del cln$tmp$.bak
  13.   cls
  14.   echo Press ^C to abort without deleting any files.
  15.   echo Otherwise to begin deleting files [SIMULATED]
  16.   echo.
  17.   echo The "DIR" command is used in lieu of the "DEL" command to simulate deletion.
  18.   call presskey
  19.   echo on
  20.   @call cln$tmp$ dir
  21.   @echo off
  22.   del cln$tmp$.bat
  23.   goto END
  24. :USAGE
  25.   cls
  26.   echo USAGE: %0 d:
  27.   echo.
  28.   echo        Where d: is a list of drives to clean up.
  29.   echo.
  30.   echo        For example: %0 CDE: will clean up drives C:, D:, E:
  31.   echo.
  32.   echo "%0" deletes backup and temporary files.  You are given an
  33.   echo opportunity to override the delete operation for specific files
  34.   echo or can abort the entire operation.
  35.   call presskey
  36. :END
  37.  
  38.